home *** CD-ROM | disk | FTP | other *** search
- /* this is an include file for back compatibility to old c compilers */
-
- #ifndef IRDIRENT_H
- #define IRDIRENT_H
-
- #include "cdialect.h"
-
- #ifdef K_AND_R
- #include <sys/dir.h>
- #ifndef ultrix
- #define dirent direct
- #endif /* ndef ultrix */
- #endif /* def K_AND_R */
-
- #ifdef NeXT
- #include <sys/dir.h>
- #define dirent direct
- #endif /* def NeXT */
-
- #ifdef M_XENIX
- #include <sys/types.h>
- #include <dirent.h>
- #endif
-
- #ifndef K_AND_R
- #ifndef NeXT
- #ifndef THINK_C
- #ifndef M_XENIX
- #include <dirent.h>
- #endif /* ndef M_XENIX */
- #endif /* ndef THINK_C */
- #endif /* ndef NeXT */
- #endif /* ndef K_AND_R */
-
- #endif /* IRDIRENT_H */
-
-
-